###############################################################################
# Makefile for the project Nokia_LCD_Demo
###############################################################################

## General Flags
PROJECT = Nokia_LCD_Demo
MCU = atmega168
TARGET = Nokia_LCD_Demo.elf
CC = avr-gcc

CPP = avr-g++

## Options common to compile, link and assembly rules
COMMON = -mmcu=$(MCU)

## Compile options common for all C compilation units.
CFLAGS = $(COMMON)
CFLAGS += -Wall -gdwarf-2 -std=gnu99   -DF_CPU=20000000UL -Os -funsigned-char -funsigned-bitfields -fpack-struct -fshort-enums
CFLAGS += -MD -MP -MT $(*F).o -MF dep/$(@F).d 

## Assembly specific flags
ASMFLAGS = $(COMMON)
ASMFLAGS += $(CFLAGS)
ASMFLAGS += -x assembler-with-cpp -Wa,-gdwarf2

## Linker flags
LDFLAGS = $(COMMON)
LDFLAGS +=  -Wl,-Map=Nokia_LCD_Demo.map


## Intel Hex file production flags
HEX_FLASH_FLAGS = -R .eeprom -R .fuse -R .lock -R .signature

HEX_EEPROM_FLAGS = -j .eeprom
HEX_EEPROM_FLAGS += --set-section-flags=.eeprom="alloc,load"
HEX_EEPROM_FLAGS += --change-section-lma .eeprom=0 --no-change-warnings


## Objects that must be built in order to link
OBJECTS = Nokia_LCD_Demo.o color_lcd.o color_lcd_text.o color_lcd_menu.o serial.o 

## Objects explicitly added by the user
LINKONLYOBJECTS = 

## Build
all: $(TARGET) Nokia_LCD_Demo.hex Nokia_LCD_Demo.eep Nokia_LCD_Demo.lss size

## Compile
Nokia_LCD_Demo.o: ../Nokia_LCD_Demo.c
	$(CC) $(INCLUDES) $(CFLAGS) -c  $<

color_lcd.o: ../color_lcd.c
	$(CC) $(INCLUDES) $(CFLAGS) -c  $<

color_lcd_text.o: ../color_lcd_text.c
	$(CC) $(INCLUDES) $(CFLAGS) -c  $<

color_lcd_menu.o: ../color_lcd_menu.c
	$(CC) $(INCLUDES) $(CFLAGS) -c  $<

serial.o: ../serial.c
	$(CC) $(INCLUDES) $(CFLAGS) -c  $<

##Link
$(TARGET): $(OBJECTS)
	 $(CC) $(LDFLAGS) $(OBJECTS) $(LINKONLYOBJECTS) $(LIBDIRS) $(LIBS) -o $(TARGET)

%.hex: $(TARGET)
	avr-objcopy -O ihex $(HEX_FLASH_FLAGS)  $< $@

%.eep: $(TARGET)
	-avr-objcopy $(HEX_EEPROM_FLAGS) -O ihex $< $@ || exit 0

%.lss: $(TARGET)
	avr-objdump -h -S $< > $@

size: ${TARGET}
	@echo
	@avr-size -C --mcu=${MCU} ${TARGET}

## Clean target
.PHONY: clean
clean:
	-rm -rf $(OBJECTS) Nokia_LCD_Demo.elf dep/* Nokia_LCD_Demo.hex Nokia_LCD_Demo.eep Nokia_LCD_Demo.lss Nokia_LCD_Demo.map


## Other dependencies
-include $(shell mkdir dep 2>/dev/null) $(wildcard dep/*)

